home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / text / edit / vim46src.lha / vim-4.6 / src / gui_at_sb.c < prev    next >
C/C++ Source or Header  |  1997-02-06  |  33KB  |  1,160 lines

  1. /* vi:set ts=4 sw=4: */
  2. /* MODIFIED ATHENA SCROLLBAR (USING ARROWHEADS AT ENDS OF TRAVEL) */
  3. /* Modifications Copyright 1992 by Mitch Trachtenberg             */
  4. /* Rights, permissions, and disclaimer of warranty are as in the  */
  5. /* DEC and MIT notice below.                                      */
  6. /* $XConsortium: Scrollbar.c,v 1.72 94/04/17 20:12:40 kaleb Exp $ */
  7.  
  8. /*
  9.  * Modified for Vim by Bill Foster and Bram Moolenaar
  10.  */
  11.  
  12. /***********************************************************
  13.  
  14. Copyright (c) 1987, 1988, 1994  X Consortium
  15.  
  16. Permission is hereby granted, free of charge, to any person obtaining a copy
  17. of this software and associated documentation files (the "Software"), to deal
  18. in the Software without restriction, including without limitation the rights
  19. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  20. copies of the Software, and to permit persons to whom the Software is
  21. furnished to do so, subject to the following conditions:
  22.  
  23. The above copyright notice and this permission notice shall be included in
  24. all copies or substantial portions of the Software.
  25.  
  26. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  27. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  28. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  29. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  30. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  31. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  32.  
  33. Except as contained in this notice, the name of the X Consortium shall not be
  34. used in advertising or otherwise to promote the sale, use or other dealings
  35. in this Software without prior written authorization from the X Consortium.
  36.  
  37.  
  38. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  39.  
  40.                         All Rights Reserved
  41.  
  42. Permission to use, copy, modify, and distribute this software and its
  43. documentation for any purpose and without fee is hereby granted,
  44. provided that the above copyright notice appear in all copies and that
  45. both that copyright notice and this permission notice appear in
  46. supporting documentation, and that the name of Digital not be
  47. used in advertising or publicity pertaining to distribution of the
  48. software without specific, written prior permission.
  49.  
  50. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  51. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  52. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  53. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  54. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  55. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  56. SOFTWARE.
  57.  
  58. ******************************************************************/
  59.  
  60. /* ScrollBar.c */
  61. /* created by weissman, Mon Jul  7 13:20:03 1986 */
  62. /* converted by swick, Thu Aug 27 1987 */
  63.  
  64. #include <X11/IntrinsicP.h>
  65. #include <X11/StringDefs.h>
  66.  
  67. #include <X11/Xaw/XawInit.h>
  68. #include "vim.h"
  69. #include "gui_at_sb.h"
  70.  
  71. #include <X11/Xmu/Drawing.h>
  72.  
  73. /* Private definitions. */
  74.  
  75. static char defaultTranslations[] =
  76.     "<Btn1Down>:   NotifyScroll()\n\
  77.      <Btn2Down>:   MoveThumb() NotifyThumb() \n\
  78.      <Btn3Down>:   NotifyScroll()\n\
  79.      <Btn1Motion>: HandleThumb() \n\
  80.      <Btn3Motion>: HandleThumb() \n\
  81.      <Btn2Motion>: MoveThumb() NotifyThumb() \n\
  82.      <BtnUp>:      EndScroll()";
  83.  
  84. static float floatZero = 0.0;
  85.  
  86. #define Offset(field) XtOffsetOf(ScrollbarRec, field)
  87.  
  88. static XtResource resources[] =
  89. {
  90. /*  {XtNscrollCursor, XtCCursor, XtRCursor, sizeof(Cursor),
  91.        Offset(scrollbar.cursor), XtRString, "crosshair"},*/
  92.   {XtNlength, XtCLength, XtRDimension, sizeof(Dimension),
  93.        Offset(scrollbar.length), XtRImmediate, (XtPointer) 1},
  94.   {XtNthickness, XtCThickness, XtRDimension, sizeof(Dimension),
  95.        Offset(scrollbar.thickness), XtRImmediate, (XtPointer) 14},
  96.   {XtNorientation, XtCOrientation, XtROrientation, sizeof(XtOrientation),
  97.       Offset(scrollbar.orientation), XtRImmediate, (XtPointer) XtorientVertical},
  98.   {XtNscrollProc, XtCCallback, XtRCallback, sizeof(XtPointer),
  99.        Offset(scrollbar.scrollProc), XtRCallback, NULL},
  100.   {XtNthumbProc, XtCCallback, XtRCallback, sizeof(XtPointer),
  101.        Offset(scrollbar.thumbProc), XtRCallback, NULL},
  102.   {XtNjumpProc, XtCCallback, XtRCallback, sizeof(XtPointer),
  103.        Offset(scrollbar.jumpProc), XtRCallback, NULL},
  104.   {XtNthumb, XtCThumb, XtRBitmap, sizeof(Pixmap),
  105.        Offset(scrollbar.thumb), XtRImmediate, (XtPointer) XtUnspecifiedPixmap},
  106.   {XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
  107.        Offset(scrollbar.foreground), XtRString, XtDefaultForeground},
  108.   {XtNshown, XtCShown, XtRFloat, sizeof(float),
  109.        Offset(scrollbar.shown), XtRFloat, (XtPointer)&floatZero},
  110.   {XtNtopOfThumb, XtCTopOfThumb, XtRFloat, sizeof(float),
  111.        Offset(scrollbar.top), XtRFloat, (XtPointer)&floatZero},
  112.   {XtNmaxOfThumb, XtCMaxOfThumb, XtRFloat, sizeof(float),
  113.        Offset(scrollbar.max), XtRFloat, (XtPointer)&floatZero},
  114.   {XtNminimumThumb, XtCMinimumThumb, XtRDimension, sizeof(Dimension),
  115.        Offset(scrollbar.min_thumb), XtRImmediate, (XtPointer) 7},
  116.   {XtNshadowWidth, XtCShadowWidth, XtRDimension, sizeof(Dimension),
  117.        Offset(scrollbar.shadow_width), XtRImmediate, (XtPointer) 1},
  118.   {XtNtopShadowPixel, XtCTopShadowPixel, XtRPixel, sizeof(Pixel),
  119.        Offset(scrollbar.top_shadow_pixel), XtRString, XtDefaultBackground},
  120.   {XtNbottomShadowPixel, XtCBottomShadowPixel, XtRPixel, sizeof(Pixel),
  121.        Offset(scrollbar.bot_shadow_pixel), XtRString, XtDefaultForeground}
  122. };
  123. #undef Offset
  124.  
  125. static void ClassInitialize __ARGS((void));
  126. static void Initialize __ARGS((Widget, Widget, ArgList, Cardinal *));
  127. static void Destroy __ARGS((Widget));
  128. static void Realize __ARGS((Widget, Mask *, XSetWindowAttributes *));
  129. static void Resize __ARGS((Widget));
  130. static void Redisplay __ARGS((Widget, XEvent *, Region));
  131. static Boolean SetValues __ARGS((Widget, Widget, Widget, ArgList, Cardinal *));
  132.  
  133. static void HandleThumb __ARGS((Widget, XEvent *, String *, Cardinal *));
  134. static void MoveThumb __ARGS((Widget, XEvent *, String *, Cardinal *));
  135. static void NotifyThumb __ARGS((Widget, XEvent *, String *, Cardinal *));
  136. static void NotifyScroll __ARGS((Widget, XEvent *, String *, Cardinal *));
  137. static void EndScroll __ARGS((Widget, XEvent *, String *, Cardinal *));
  138. static void _Xaw3dDrawShadows __ARGS((Widget, XEvent *, Region, int));
  139. static void AllocTopShadowGC __ARGS((Widget));
  140. static void AllocBotShadowGC __ARGS((Widget));
  141.  
  142. static XtActionsRec actions[] =
  143. {
  144.     {"HandleThumb",        HandleThumb},
  145.     {"MoveThumb",        MoveThumb},
  146.     {"NotifyThumb",        NotifyThumb},
  147.     {"NotifyScroll",    NotifyScroll},
  148.     {"EndScroll",        EndScroll}
  149. };
  150.  
  151.  
  152. ScrollbarClassRec vim_scrollbarClassRec =
  153. {
  154.   { /* core fields */
  155.     /* superclass       */    (WidgetClass) &simpleClassRec,
  156.     /* class_name       */    "Scrollbar",
  157.     /* size             */    sizeof(ScrollbarRec),
  158.     /* class_initialize    */    ClassInitialize,
  159.     /* class_part_init  */    NULL,
  160.     /* class_inited        */    FALSE,
  161.     /* initialize       */    Initialize,
  162.     /* initialize_hook  */    NULL,
  163.     /* realize          */    Realize,
  164.     /* actions          */    actions,
  165.     /* num_actions        */    XtNumber(actions),
  166.     /* resources        */    resources,
  167.     /* num_resources    */    XtNumber(resources),
  168.     /* xrm_class        */    NULLQUARK,
  169.     /* compress_motion    */    TRUE,
  170.     /* compress_exposure*/    TRUE,
  171.     /* compress_enterleave*/    TRUE,
  172.     /* visible_interest */    FALSE,
  173.     /* destroy          */    Destroy,
  174.     /* resize           */    Resize,
  175.     /* expose           */    Redisplay,
  176.     /* set_values       */    SetValues,
  177.     /* set_values_hook  */    NULL,
  178.     /* set_values_almost */    XtInheritSetValuesAlmost,
  179.     /* get_values_hook  */    NULL,
  180.     /* accept_focus     */    NULL,
  181.     /* version          */    XtVersion,
  182.     /* callback_private */    NULL,
  183.     /* tm_table         */    defaultTranslations,
  184.     /* query_geometry    */    XtInheritQueryGeometry,
  185.     /* display_accelerator*/    XtInheritDisplayAccelerator,
  186.     /* extension        */    NULL
  187.   },
  188.   { /* simple fields */
  189.     /* change_sensitive    */    XtInheritChangeSensitive
  190.   },
  191.   { /* scrollbar fields */
  192.     /* ignore        */    0
  193.   }
  194.  
  195. };
  196.  
  197. WidgetClass vim_scrollbarWidgetClass = (WidgetClass)&vim_scrollbarClassRec;
  198.  
  199. #define NoButton -1
  200. #define PICKLENGTH(widget, x, y) \
  201.     ((widget->scrollbar.orientation == XtorientHorizontal) ? (x) : (y))
  202. #define MIN(x,y)    ((x) < (y) ? (x) : (y))
  203. #define MAX(x,y)    ((x) > (y) ? (x) : (y))
  204.  
  205. #define LINE_DELAY        300
  206. #define PAGE_DELAY        300
  207. #define LINE_REPEAT         50
  208. #define PAGE_REPEAT        250
  209.  
  210. static void ClassInitialize()
  211. {
  212.     XawInitializeWidgetSet();
  213.     XtAddConverter( XtRString, XtROrientation, XmuCvtStringToOrientation,
  214.             (XtConvertArgList)NULL, (Cardinal)0 );
  215. }
  216.  
  217. #define MARGIN(sbw) (sbw)->scrollbar.thickness + (sbw)->scrollbar.shadow_width
  218.  
  219. static void FillArea(sbw, top, bottom, fill, draw_shadow)
  220.     ScrollbarWidget        sbw;
  221.     Position            top, bottom;
  222.     int                    fill;
  223.     int                    draw_shadow;
  224. {
  225.     int tlen = bottom - top;    /* length of thumb in pixels */
  226.     int sw, margin, floor;
  227.     int lx, ly, lw, lh;
  228.  
  229.     if (bottom <= 0 || bottom <= top) 
  230.         return;
  231.     if ((sw = sbw->scrollbar.shadow_width) < 0) 
  232.         sw = 0;
  233.     margin = MARGIN (sbw);
  234.     floor = sbw->scrollbar.length - margin + 2;
  235.  
  236.     if (sbw->scrollbar.orientation == XtorientHorizontal)
  237.     {
  238.         lx = ((top < margin) ? margin : top);
  239.         ly = sw;
  240.         lw = (((top + tlen) > floor) ? floor - top : tlen);
  241.         lh = sbw->core.height - 2 * sw;
  242.     }
  243.     else
  244.     {
  245.         lx = sw;
  246.         ly = ((top < margin) ? margin : top);
  247.         lw = sbw->core.width - 2 * sw;
  248.         lh = (((top + tlen) > floor) ? floor - top : tlen);
  249.     }
  250.     if (lh <= 0 || lw <= 0)
  251.         return;
  252.  
  253.     if (draw_shadow)
  254.     {
  255.         if (!sbw->scrollbar.orientation == XtorientHorizontal)
  256.         {
  257.             /* Top border */
  258.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  259.                     sbw->scrollbar.top_shadow_GC,
  260.                     lx, ly, lx + lw - 1, ly);
  261.  
  262.             /* Bottom border */
  263.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  264.                     sbw->scrollbar.bot_shadow_GC,
  265.                     lx, ly + lh - 1, lx + lw - 1, ly + lh - 1);
  266.         }
  267.         else
  268.         {
  269.             /* Left border */
  270.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  271.                     sbw->scrollbar.top_shadow_GC,
  272.                     lx, ly, lx, ly + lh - 1);
  273.  
  274.             /* Right border */
  275.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  276.                     sbw->scrollbar.bot_shadow_GC,
  277.                     lx + lw - 1, ly, lx + lw - 1, ly + lh - 1);
  278.         }
  279.         return;
  280.     }
  281.  
  282.     if (fill)
  283.     {
  284.         XFillRectangle(XtDisplay((Widget) sbw), XtWindow((Widget) sbw), 
  285.                 sbw->scrollbar.gc, 
  286.                 lx, ly, (unsigned int) lw, (unsigned int) lh);
  287.  
  288.         if (!sbw->scrollbar.orientation == XtorientHorizontal)
  289.         {
  290.             /* Left border */
  291.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  292.                     sbw->scrollbar.top_shadow_GC,
  293.                     lx, ly, lx, ly + lh - 1);
  294.  
  295.             /* Right border */
  296.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  297.                     sbw->scrollbar.bot_shadow_GC,
  298.                     lx + lw - 1, ly, lx + lw - 1, ly + lh - 1);
  299.         }
  300.         else
  301.         {
  302.             /* Top border */
  303.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  304.                     sbw->scrollbar.top_shadow_GC,
  305.                     lx, ly, lx + lw - 1, ly);
  306.  
  307.             /* Bottom border */
  308.             XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  309.                     sbw->scrollbar.bot_shadow_GC,
  310.                     lx, ly + lh - 1, lx + lw - 1, ly + lh - 1);
  311.         }
  312.     }
  313.     else
  314.     {
  315.         XClearArea (XtDisplay((Widget) sbw), XtWindow((Widget) sbw), 
  316.                 lx, ly, (unsigned int) lw, (unsigned int) lh, 
  317.                 FALSE);
  318.     }
  319. }
  320.  
  321. /* Paint the thumb in the area specified by sbw->top and
  322.    sbw->shown.  The old area is erased.  The painting and
  323.    erasing is done cleverly so that no flickering will occur.
  324.  */
  325.  
  326. static void PaintThumb(sbw)
  327.     ScrollbarWidget sbw;
  328. {
  329.     Position        oldtop, oldbot, newtop, newbot;
  330.     Dimension        margin, tzl;
  331.  
  332.     margin = MARGIN (sbw);
  333.     tzl = sbw->scrollbar.length - 2 * margin;
  334.     newtop = margin + (int)(tzl * sbw->scrollbar.top);
  335.     newbot = newtop + (int)(tzl * sbw->scrollbar.shown) + 1;
  336.     if (newbot < newtop + (int)sbw->scrollbar.min_thumb) 
  337.         newbot = newtop + sbw->scrollbar.min_thumb;
  338.  
  339.     oldtop = sbw->scrollbar.topLoc;
  340.     oldbot = oldtop + sbw->scrollbar.shownLength;
  341.     sbw->scrollbar.topLoc = newtop;
  342.     sbw->scrollbar.shownLength = newbot - newtop;
  343.     if (XtIsRealized ((Widget) sbw))
  344.     {
  345.         if (newtop < oldtop)
  346.             FillArea(sbw, newtop, MIN(newbot,   oldtop+1),1,0);
  347.         if (newtop > oldtop)
  348.             FillArea(sbw, oldtop, MIN(newtop,   oldbot  ),0,0);
  349.         if (newbot < oldbot)
  350.             FillArea(sbw, MAX(newbot, oldtop),  oldbot,   0,0);
  351.         if (newbot > oldbot)
  352.             FillArea(sbw, MAX(newtop, oldbot-1), newbot,  1,0);
  353.  
  354.         /* Only draw the missing shadows */
  355.         FillArea(sbw, newtop, newbot, 0, 1);
  356.     }
  357. }
  358.  
  359. static void PaintArrows(sbw)
  360.     ScrollbarWidget sbw;
  361. {
  362.     XPoint        point[6];
  363.     Dimension    thickness = sbw->scrollbar.thickness - 1;
  364.     Dimension    size;
  365.     Dimension    off;
  366.   
  367.     if (XtIsRealized((Widget) sbw))
  368.     {
  369.         if ((int)thickness * 2 > (int)sbw->scrollbar.length)
  370.         {
  371.             size = sbw->scrollbar.length / 2;
  372.             off = (int)(thickness - size) / 2;
  373.         }
  374.         else
  375.         {
  376.             size = thickness;
  377.             off = 0;
  378.         }
  379.         point[0].x = off + sbw->scrollbar.shadow_width;
  380.         point[0].y = size;
  381.         point[1].x = thickness - off - sbw->scrollbar.shadow_width;
  382.         point[1].y = size;
  383.         point[2].x = thickness / 2;
  384.         point[2].y = sbw->scrollbar.shadow_width;
  385.  
  386.         point[3].x = off + sbw->scrollbar.shadow_width;
  387.         point[3].y = sbw->scrollbar.length - size;
  388.         point[4].x = thickness - off - sbw->scrollbar.shadow_width;
  389.         point[4].y = sbw->scrollbar.length - size;
  390.         point[5].x = thickness / 2;
  391.         point[5].y = sbw->scrollbar.length - sbw->scrollbar.shadow_width - 1;
  392.  
  393.         /* horizontal arrows require that x and y coordinates be swapped */
  394.         if (sbw->scrollbar.orientation == XtorientHorizontal)
  395.         {
  396.             int n;
  397.             int swap;
  398.             for (n = 0; n < 6; n++)
  399.             {
  400.                 swap = point[n].x;
  401.                 point[n].x = point[n].y;
  402.                 point[n].y = swap;
  403.             }
  404.         }
  405.         /* draw the up/left arrow */
  406.         XFillPolygon (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw), 
  407.                 sbw->scrollbar.gc, 
  408.                 point, 3, 
  409.                 Convex, CoordModeOrigin);
  410.         XDrawLines (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  411.                 sbw->scrollbar.bot_shadow_GC,
  412.                 point, 3,
  413.                 CoordModeOrigin);
  414.         XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  415.                 sbw->scrollbar.top_shadow_GC,
  416.                 point[0].x, point[0].y,
  417.                 point[2].x, point[2].y);
  418.         /* draw the down/right arrow */
  419.         XFillPolygon (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw), 
  420.                 sbw->scrollbar.gc,
  421.                 point+3, 3, 
  422.                 Convex, CoordModeOrigin);
  423.         XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  424.                 sbw->scrollbar.top_shadow_GC,
  425.                 point[3].x, point[3].y,
  426.                 point[4].x, point[4].y);
  427.         XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  428.                 sbw->scrollbar.top_shadow_GC,
  429.                 point[3].x, point[3].y,
  430.                 point[5].x, point[5].y);
  431.         XDrawLine (XtDisplay ((Widget) sbw), XtWindow ((Widget) sbw),
  432.                 sbw->scrollbar.bot_shadow_GC,
  433.                 point[4].x, point[4].y,
  434.                 point[5].x, point[5].y);
  435.     }
  436. }
  437.  
  438. /*    Function Name: Destroy
  439.  *    Description: Called as the scrollbar is going away...
  440.  *    Arguments: w - the scrollbar.
  441.  *    Returns: nonw
  442.  */
  443. static void Destroy(w)
  444.     Widget w;
  445. {
  446.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  447.     if (sbw->scrollbar.timer_id != (XtIntervalId) 0)
  448.         XtRemoveTimeOut (sbw->scrollbar.timer_id);
  449.     XtReleaseGC(w, sbw->scrollbar.gc);
  450.     XtReleaseGC(w, sbw->scrollbar.top_shadow_GC);
  451.     XtReleaseGC(w, sbw->scrollbar.bot_shadow_GC);
  452. }
  453.  
  454. /*    Function Name: CreateGC
  455.  *    Description: Creates the GC.
  456.  *    Arguments: w - the scrollbar widget.
  457.  *    Returns: none. 
  458.  */
  459.  
  460. static void CreateGC (w)
  461.     Widget w;
  462. {
  463.     ScrollbarWidget        sbw = (ScrollbarWidget) w;
  464.     XGCValues            gcValues;
  465.     XtGCMask            mask;
  466.     unsigned int        depth = 1;
  467.  
  468.     if (sbw->scrollbar.thumb == XtUnspecifiedPixmap)
  469.     {
  470.         sbw->scrollbar.thumb = XmuCreateStippledPixmap (XtScreen(w), 
  471.                     (Pixel) 1, (Pixel) 0, depth);
  472.     }
  473.     else if (sbw->scrollbar.thumb != None)
  474.     {
  475.         Window root;
  476.         int x, y;
  477.         unsigned int width, height, bw;
  478.  
  479.         if (XGetGeometry (XtDisplay(w), sbw->scrollbar.thumb, &root, &x, &y,
  480.                 &width, &height, &bw, &depth) == 0)
  481.         {
  482.             XtAppError (XtWidgetToApplicationContext (w),
  483.                  "Scrollbar Widget: Could not get geometry of thumb pixmap.");
  484.         }
  485.     }
  486.  
  487.     gcValues.foreground = sbw->scrollbar.foreground;
  488.     gcValues.background = sbw->core.background_pixel;
  489.     mask = GCForeground | GCBackground;
  490.  
  491.     if (sbw->scrollbar.thumb != None)
  492.     {
  493.         gcValues.fill_style = FillSolid;
  494.         mask |= GCFillStyle;
  495. #if 0
  496.     if (depth == 1)
  497.     {
  498.         gcValues.fill_style = FillOpaqueStippled;
  499.         gcValues.stipple = sbw->scrollbar.thumb;
  500.         mask |= GCFillStyle | GCStipple;
  501.     }
  502.     else
  503.     {
  504.         gcValues.fill_style = FillTiled;
  505.         gcValues.tile = sbw->scrollbar.thumb;
  506.         mask |= GCFillStyle | GCTile;
  507.     }
  508. #endif
  509.     }
  510.     /* the creation should be non-caching, because */
  511.     /* we now set and clear clip masks on the gc returned */
  512.     sbw->scrollbar.gc = XtGetGC (w, mask, &gcValues);
  513. }
  514.  
  515. static void SetDimensions(sbw)
  516.     ScrollbarWidget sbw;
  517. {
  518.     if (sbw->scrollbar.orientation == XtorientVertical)
  519.     {
  520.         sbw->scrollbar.length = sbw->core.height;
  521.         sbw->scrollbar.thickness = sbw->core.width;
  522.     }
  523.     else
  524.     {
  525.         sbw->scrollbar.length = sbw->core.width;
  526.         sbw->scrollbar.thickness = sbw->core.height;
  527.     }
  528. }
  529.  
  530. /* ARGSUSED */
  531. static void Initialize(request, new, args, num_args)
  532.     Widget        request;        /* what the client asked for */
  533.     Widget        new;            /* what we're going to give him */
  534.     ArgList        args;
  535.     Cardinal    *num_args;
  536. {
  537.     ScrollbarWidget sbw = (ScrollbarWidget) new;
  538.  
  539.     CreateGC(new);
  540.     AllocTopShadowGC(new);
  541.     AllocBotShadowGC(new);
  542.  
  543.     if (sbw->core.width == 0)
  544.         sbw->core.width = (sbw->scrollbar.orientation == XtorientVertical)
  545.             ? sbw->scrollbar.thickness : sbw->scrollbar.length;
  546.  
  547.     if (sbw->core.height == 0)
  548.         sbw->core.height = (sbw->scrollbar.orientation == XtorientHorizontal)
  549.             ? sbw->scrollbar.thickness : sbw->scrollbar.length;
  550.  
  551.     SetDimensions(sbw);
  552.     sbw->scrollbar.scroll_mode = SMODE_NONE;
  553.     sbw->scrollbar.timer_id = (XtIntervalId)0;
  554.     sbw->scrollbar.topLoc = 0;
  555.     sbw->scrollbar.shownLength = sbw->scrollbar.min_thumb;
  556. }
  557.  
  558. static void Realize(w, valueMask, attributes)
  559.     Widget w;
  560.     Mask *valueMask;
  561.     XSetWindowAttributes *attributes;
  562. {
  563. #if 0
  564.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  565.  
  566.     if (sbw->simple.cursor_name == NULL)
  567.         XtVaSetValues(w, XtNcursorName, "crosshair", NULL);
  568.  
  569.     /* dont set the cursor of the window to anything */
  570.     *valueMask &= ~CWCursor;
  571. #endif
  572.  
  573.     /* 
  574.      * The Simple widget actually stuffs the value in the valuemask. 
  575.      */
  576.     (*vim_scrollbarWidgetClass->core_class.superclass->core_class.realize)
  577.         (w, valueMask, attributes);
  578. }
  579.  
  580. /* ARGSUSED */
  581. static Boolean SetValues(current, request, desired, args, num_args)
  582.     Widget  current,        /* what I am */
  583.             request,        /* what he wants me to be */
  584.             desired;        /* what I will become */
  585.     ArgList args;
  586.     Cardinal *num_args;
  587. {
  588.     ScrollbarWidget        sbw = (ScrollbarWidget) current;
  589.     ScrollbarWidget        dsbw = (ScrollbarWidget) desired;
  590.     Boolean                redraw = FALSE;
  591.  
  592. /*
  593.  * If these values are outside the acceptable range ignore them...
  594.  */
  595.  
  596.     if (dsbw->scrollbar.top < 0.0 || dsbw->scrollbar.top > 1.0)
  597.         dsbw->scrollbar.top = sbw->scrollbar.top;
  598.  
  599.     if (dsbw->scrollbar.shown < 0.0 || dsbw->scrollbar.shown > 1.0)
  600.         dsbw->scrollbar.shown = sbw->scrollbar.shown;
  601.  
  602. /*
  603.  * Change colors and stuff...
  604.  */
  605.     if (XtIsRealized(desired))
  606.     {
  607.         if (sbw->scrollbar.foreground != dsbw->scrollbar.foreground ||
  608.                 sbw->core.background_pixel != dsbw->core.background_pixel ||
  609.                 sbw->scrollbar.thumb != dsbw->scrollbar.thumb)
  610.         {
  611.             XtReleaseGC(desired, sbw->scrollbar.gc);
  612.             CreateGC (desired);
  613.             redraw = TRUE;
  614.         }
  615.         if (sbw->scrollbar.top != dsbw->scrollbar.top ||
  616.                 sbw->scrollbar.shown != dsbw->scrollbar.shown)
  617.             redraw = TRUE;
  618.     }
  619.     return redraw;
  620. }
  621.  
  622. static void Resize (w)
  623.     Widget w;
  624. {
  625.     /* ForgetGravity has taken care of background, but thumb may
  626.      * have to move as a result of the new size. */
  627.     SetDimensions ((ScrollbarWidget) w);
  628.     Redisplay (w, (XEvent*) NULL, (Region)NULL);
  629. }
  630.  
  631.  
  632. /* ARGSUSED */
  633. static void Redisplay(w, event, region)
  634.     Widget w;
  635.     XEvent *event;
  636.     Region region;
  637. {
  638.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  639.     int x, y;
  640.     unsigned int width, height;
  641.  
  642.     _Xaw3dDrawShadows(w, event, region, FALSE);
  643.  
  644.     if (sbw->scrollbar.orientation == XtorientHorizontal)
  645.     {
  646.         x = sbw->scrollbar.topLoc;
  647.         y = 1;
  648.         width = sbw->scrollbar.shownLength;
  649.         height = sbw->core.height - 2;
  650.     }
  651.     else
  652.     {
  653.         x = 1;
  654.         y = sbw->scrollbar.topLoc;
  655.         width = sbw->core.width - 2;
  656.         height = sbw->scrollbar.shownLength;
  657.     }
  658.     if (region == NULL ||
  659.             XRectInRegion (region, x, y, width, height) != RectangleOut)
  660.     {
  661.         /* Forces entire thumb to be painted. */
  662.         sbw->scrollbar.topLoc = -(sbw->scrollbar.length + 1);
  663.         PaintThumb (sbw); 
  664.     }
  665.     /* we'd like to be region aware here!!!! */
  666.     PaintArrows(sbw);
  667. }
  668.  
  669.  
  670. static Boolean CompareEvents (oldEvent, newEvent)
  671.     XEvent *oldEvent, *newEvent;
  672. {
  673. #define Check(field) if (newEvent->field != oldEvent->field) return False;
  674.  
  675.     Check(xany.display);
  676.     Check(xany.type);
  677.     Check(xany.window);
  678.  
  679.     switch (newEvent->type)
  680.     {
  681.         case MotionNotify:
  682.             Check(xmotion.state); 
  683.             break;
  684.         case ButtonPress:
  685.         case ButtonRelease:
  686.             Check(xbutton.state);
  687.             Check(xbutton.button); 
  688.             break;
  689.         case KeyPress:
  690.         case KeyRelease:
  691.             Check(xkey.state);
  692.             Check(xkey.keycode); 
  693.             break;
  694.         case EnterNotify:
  695.         case LeaveNotify:
  696.             Check(xcrossing.mode);
  697.             Check(xcrossing.detail);
  698.             Check(xcrossing.state); 
  699.             break;
  700.     }
  701. #undef Check
  702.  
  703.     return True;
  704. }
  705.  
  706. struct EventData
  707. {
  708.     XEvent *oldEvent;
  709.     int count;
  710. };
  711.  
  712. static Bool PeekNotifyEvent (dpy, event, args)
  713.     Display *dpy;
  714.     XEvent *event;
  715.     char *args;
  716. {
  717.     struct EventData *eventData = (struct EventData*)args;
  718.  
  719.     return ((++eventData->count == QLength(dpy)) /* since PeekIf blocks */
  720.         || CompareEvents(event, eventData->oldEvent));
  721. }
  722.  
  723.  
  724. static Boolean LookAhead (w, event)
  725.     Widget w;
  726.     XEvent *event;
  727. {
  728.     XEvent newEvent;
  729.     struct EventData eventData;
  730.  
  731.     if (QLength (XtDisplay (w)) == 0)
  732.         return False;
  733.  
  734.     eventData.count = 0;
  735.     eventData.oldEvent = event;
  736.  
  737.     XPeekIfEvent (XtDisplay (w), &newEvent, PeekNotifyEvent, (char*)&eventData);
  738.  
  739.     return CompareEvents (event, &newEvent);
  740. }
  741.  
  742.  
  743. static void ExtractPosition(event, x, y, state)
  744.     XEvent            *event;
  745.     Position        *x, *y;        /* RETURN */
  746.     unsigned int    *state;        /* RETURN */
  747. {
  748.     switch( event->type )
  749.     {
  750.         case MotionNotify:
  751.             *x = event->xmotion.x;     
  752.             *y = event->xmotion.y;      
  753.             if (state != NULL)
  754.                 *state = event->xmotion.state;
  755.             break;
  756.         case ButtonPress:
  757.         case ButtonRelease:
  758.             *x = event->xbutton.x;   
  759.             *y = event->xbutton.y;   
  760.             if (state != NULL)
  761.                 *state = event->xbutton.state;
  762.             break;
  763.         case KeyPress:
  764.         case KeyRelease:
  765.             *x = event->xkey.x;      
  766.             *y = event->xkey.y;      
  767.             if (state != NULL)
  768.                 *state = event->xkey.state;
  769.             break;
  770.         case EnterNotify:
  771.         case LeaveNotify:
  772.             *x = event->xcrossing.x; 
  773.             *y = event->xcrossing.y; 
  774.             if (state != NULL)
  775.                 *state = event->xcrossing.state;
  776.             break;
  777.         default:
  778.             *x = 0; *y = 0;
  779.             if (state != NULL)
  780.                 *state = 0;
  781.     }
  782. }
  783.  
  784. /* ARGSUSED */
  785. static void HandleThumb(w, event, params, num_params)
  786.     Widget w;
  787.     XEvent *event;
  788.     String *params;        /* unused */
  789.     Cardinal *num_params;    /* unused */
  790. {
  791.     Position x, y, loc;
  792.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  793.  
  794.     ExtractPosition(event, &x, &y, NULL);
  795.     loc = PICKLENGTH(sbw, x, y);
  796.     /* if the motion event puts the pointer in thumb, call Move and Notify */
  797.     /* also call Move and Notify if we're already in continuous scroll mode */
  798.     if (sbw->scrollbar.scroll_mode == SMODE_CONT ||
  799.             (loc >= sbw->scrollbar.topLoc &&
  800.              loc <= sbw->scrollbar.topLoc + (int)sbw->scrollbar.shownLength))
  801.     {
  802.         XtCallActionProc(w, "MoveThumb", event, params, *num_params);
  803.         XtCallActionProc(w, "NotifyThumb", event, params, *num_params);
  804.     }
  805. }
  806.  
  807. static void RepeatNotify(client_data, idp)
  808.     XtPointer client_data;
  809.     XtIntervalId *idp;
  810. {
  811.     ScrollbarWidget    sbw = (ScrollbarWidget) client_data;
  812.     int                call_data;
  813.     char            mode = sbw->scrollbar.scroll_mode;
  814.     unsigned long     rep;
  815.  
  816.     if (mode == SMODE_NONE || mode == SMODE_CONT)
  817.     {
  818.         sbw->scrollbar.timer_id = (XtIntervalId)0;
  819.         return;
  820.     }
  821.  
  822.     if (mode == SMODE_LINE_DOWN || mode == SMODE_LINE_UP)
  823.     {
  824.         call_data = ONE_LINE_DATA;
  825.         rep = LINE_REPEAT;
  826.     }
  827.     else
  828.     {
  829.         call_data = ONE_PAGE_DATA;
  830.         rep = PAGE_REPEAT;
  831.     }
  832.  
  833.     if (mode == SMODE_PAGE_UP || mode == SMODE_LINE_UP)
  834.         call_data = -call_data;
  835.  
  836.     XtCallCallbacks((Widget)sbw, XtNscrollProc, (XtPointer)call_data);
  837.  
  838.     sbw->scrollbar.timer_id = 
  839.         XtAppAddTimeOut(XtWidgetToApplicationContext((Widget)sbw),
  840.                 rep,
  841.                 RepeatNotify,
  842.                 client_data);
  843. }
  844.  
  845. /*
  846.  * Same as above, but for floating numbers. 
  847.  */
  848. static float FloatInRange(num, small, big)
  849.     float num, small, big;
  850. {
  851.     return (num < small) ? small : ((num > big) ? big : num);
  852. }
  853.  
  854. /* ARGSUSED */
  855. static void NotifyScroll(w, event, params, num_params)
  856.     Widget        w;
  857.     XEvent        *event;
  858.     String        *params;        
  859.     Cardinal    *num_params;    
  860. {
  861.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  862.     Position        x, y, loc;
  863.     Dimension        arrow_size;
  864.     unsigned long    delay = 0;
  865.     int                call_data = 0;
  866.     unsigned int    state;
  867.  
  868.     if (sbw->scrollbar.scroll_mode == SMODE_CONT)    /* if scroll continuous */
  869.         return;
  870.  
  871.     if (LookAhead (w, event))
  872.         return;
  873.  
  874.     ExtractPosition(event, &x, &y, &state);
  875.     loc = PICKLENGTH(sbw, x, y);
  876.  
  877.     if ((int)sbw->scrollbar.thickness * 2 > (int)sbw->scrollbar.length)
  878.         arrow_size = sbw->scrollbar.length / 2;
  879.     else
  880.         arrow_size = sbw->scrollbar.thickness;
  881.  
  882.     /*
  883.      * handle CTRL modifier
  884.      */
  885.     if (state & ControlMask)
  886.     {
  887.         if (loc > sbw->scrollbar.topLoc + (Position)sbw->scrollbar.shownLength)
  888.             call_data = END_PAGE_DATA;
  889.         else
  890.             call_data = -END_PAGE_DATA;
  891.         sbw->scrollbar.scroll_mode = SMODE_NONE;
  892.     }
  893.     /*
  894.      * handle first arrow zone
  895.      */
  896.     else if (loc < (Position)arrow_size)
  897.     {
  898.         call_data = -ONE_LINE_DATA;
  899.         sbw->scrollbar.scroll_mode = SMODE_LINE_UP;
  900.         delay = LINE_DELAY;
  901.     }
  902.  
  903.     /*
  904.      * handle last arrow zone
  905.      */
  906.     else if (loc > (Position)(sbw->scrollbar.length - arrow_size))
  907.     {
  908.         call_data = ONE_LINE_DATA;
  909.         sbw->scrollbar.scroll_mode = SMODE_LINE_DOWN;
  910.         delay = LINE_DELAY;
  911.     }
  912.  
  913.     /*
  914.      * handle zone "above" the thumb
  915.      */
  916.     else if (loc < sbw->scrollbar.topLoc)
  917.     {
  918.         call_data = -ONE_PAGE_DATA;
  919.         sbw->scrollbar.scroll_mode = SMODE_PAGE_UP;
  920.         delay = PAGE_DELAY;
  921.     }
  922.  
  923.     /*
  924.      * handle zone "below" the thumb
  925.      */
  926.     else if (loc > sbw->scrollbar.topLoc + (Position)sbw->scrollbar.shownLength)
  927.     {
  928.         call_data = ONE_PAGE_DATA;
  929.         sbw->scrollbar.scroll_mode = SMODE_PAGE_DOWN;
  930.         delay = PAGE_DELAY;
  931.     }
  932.  
  933.     if (call_data)
  934.         XtCallCallbacks(w, XtNscrollProc, (XtPointer)call_data);
  935.  
  936.     /* establish autoscroll */
  937.     if (delay)
  938.         sbw->scrollbar.timer_id = 
  939.             XtAppAddTimeOut(XtWidgetToApplicationContext(w),
  940.                                            delay, RepeatNotify, (XtPointer)w);
  941. }
  942.  
  943. /* ARGSUSED */
  944. static void EndScroll(w, event, params, num_params)
  945.     Widget w;
  946.     XEvent *event;        /* unused */
  947.     String *params;        /* unused */
  948.     Cardinal *num_params;    /* unused */
  949. {
  950.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  951.  
  952.     sbw->scrollbar.scroll_mode = SMODE_NONE;
  953.     /* no need to remove any autoscroll timeout; it will no-op */
  954.     /* because the scroll_mode is SMODE_NONE */
  955.     /* but be sure to remove timeout in destroy proc */
  956. }
  957.  
  958. static float FractionLoc(sbw, x, y)
  959.     ScrollbarWidget sbw;
  960.     int x, y;
  961. {
  962.     int        margin;
  963.     float   height, width;
  964.  
  965.     margin = MARGIN(sbw);
  966.     x -= margin;
  967.     y -= margin;
  968.     height = (float)sbw->core.height - 2 * margin;
  969.     width = (float)sbw->core.width - 2 * margin;
  970.     return PICKLENGTH(sbw, x / width, y / height);
  971. }
  972.  
  973.  
  974. static void MoveThumb(w, event, params, num_params)
  975.     Widget        w;
  976.     XEvent        *event;
  977.     String        *params;        /* unused */
  978.     Cardinal    *num_params;    /* unused */
  979. {
  980.     ScrollbarWidget        sbw = (ScrollbarWidget)w;
  981.     Position            x, y;
  982.     float                top;
  983.     char                old_mode = sbw->scrollbar.scroll_mode;
  984.  
  985.     sbw->scrollbar.scroll_mode = SMODE_CONT; /* indicate continuous scroll */
  986.  
  987.     if (LookAhead(w, event))
  988.         return;
  989.  
  990.     if (!event->xmotion.same_screen)
  991.         return;
  992.  
  993.     ExtractPosition(event, &x, &y, NULL);
  994.  
  995.     top = FractionLoc(sbw, x, y);
  996.  
  997.     if (old_mode != SMODE_CONT)                /* start dragging: set offset */
  998.         if (event->xbutton.button == Button2)
  999.             sbw->scrollbar.scroll_off = sbw->scrollbar.shown / 2.;
  1000.         else
  1001.             sbw->scrollbar.scroll_off = top - sbw->scrollbar.top;
  1002.  
  1003.     top -= sbw->scrollbar.scroll_off;
  1004.     top = FloatInRange(top, 0.0, sbw->scrollbar.max);
  1005.  
  1006.     sbw->scrollbar.top = top;
  1007.     PaintThumb(sbw);
  1008.     XFlush(XtDisplay(w));    /* re-draw it before Notifying */
  1009. }
  1010.  
  1011.  
  1012. /* ARGSUSED */
  1013. static void NotifyThumb(w, event, params, num_params)
  1014.     Widget        w;
  1015.     XEvent        *event;
  1016.     String        *params;        /* unused */
  1017.     Cardinal    *num_params;    /* unused */
  1018. {
  1019.     ScrollbarWidget sbw = (ScrollbarWidget)w;
  1020.  
  1021.     if (LookAhead(w, event))
  1022.         return;
  1023.  
  1024.     /* thumbProc is not pretty, but is necessary for backwards
  1025.        compatibility on those architectures for which it work{s,ed};
  1026.        the intent is to pass a (truncated) float by value. */
  1027.     XtCallCallbacks(w, XtNthumbProc, *(XtPointer*)&sbw->scrollbar.top);
  1028.     XtCallCallbacks(w, XtNjumpProc, (XtPointer)&sbw->scrollbar.top);
  1029. }
  1030.  
  1031. /* ARGSUSED */
  1032. static void
  1033. AllocTopShadowGC (w)
  1034.     Widget w;
  1035. {
  1036.     ScrollbarWidget    sbw = (ScrollbarWidget) w;
  1037.     XtGCMask        valuemask;
  1038.     XGCValues        myXGCV;
  1039.  
  1040.     valuemask = GCForeground;
  1041.     myXGCV.foreground = sbw->scrollbar.top_shadow_pixel;
  1042.     sbw->scrollbar.top_shadow_GC = XtGetGC(w, valuemask, &myXGCV);
  1043. }
  1044.  
  1045. /* ARGSUSED */
  1046. static void
  1047. AllocBotShadowGC (w)
  1048.     Widget w;
  1049. {
  1050.     ScrollbarWidget    sbw = (ScrollbarWidget) w;
  1051.     XtGCMask        valuemask;
  1052.     XGCValues        myXGCV;
  1053.  
  1054.     valuemask = GCForeground;
  1055.     myXGCV.foreground = sbw->scrollbar.bot_shadow_pixel;
  1056.     sbw->scrollbar.bot_shadow_GC = XtGetGC(w, valuemask, &myXGCV);
  1057. }
  1058.  
  1059. /* ARGSUSED */
  1060. static void
  1061. _Xaw3dDrawShadows(gw, event, region, out)
  1062.     Widget    gw;
  1063.     XEvent    *event;
  1064.     Region    region;
  1065.     int        out;
  1066. {
  1067.     XPoint    pt[6];
  1068.     ScrollbarWidget sbw = (ScrollbarWidget) gw;
  1069.     Dimension    s = sbw->scrollbar.shadow_width;
  1070.     /* 
  1071.      * draw the shadows using the core part width and height, 
  1072.      * and the scrollbar part shadow_width.
  1073.      *
  1074.      *    no point to do anything if the shadow_width is 0 or the
  1075.      *    widget has not been realized.
  1076.      */ 
  1077.     if ((s > 0) && XtIsRealized (gw))
  1078.     {
  1079.         Dimension    h = sbw->core.height;
  1080.         Dimension    w = sbw->core.width;
  1081.         Dimension    wms = w - s;
  1082.         Dimension    hms = h - s;
  1083.         Display        *dpy = XtDisplay (gw);
  1084.         Window        win = XtWindow (gw);
  1085.         GC        top, bot;
  1086.  
  1087.         if (out)
  1088.         {
  1089.             top = sbw->scrollbar.top_shadow_GC;
  1090.             bot = sbw->scrollbar.bot_shadow_GC;
  1091.         }
  1092.         else
  1093.         {
  1094.             top = sbw->scrollbar.bot_shadow_GC;
  1095.             bot = sbw->scrollbar.top_shadow_GC;
  1096.         }
  1097.  
  1098.         /* top-left shadow */
  1099.         if ((region == NULL) ||
  1100.                 (XRectInRegion (region, 0, 0, w, s) != RectangleOut) ||
  1101.                 (XRectInRegion (region, 0, 0, s, h) != RectangleOut))
  1102.         {
  1103.             pt[0].x = 0;    pt[0].y = h;
  1104.             pt[1].x =        pt[1].y = 0;
  1105.             pt[2].x = w;    pt[2].y = 0;
  1106.             pt[3].x = wms;    pt[3].y = s;
  1107.             pt[4].x =        pt[4].y = s;
  1108.             pt[5].x = s;    pt[5].y = hms;
  1109.             XFillPolygon (dpy, win, top, pt, 6,Complex,CoordModeOrigin);
  1110.         }
  1111.  
  1112.         /* bottom-right shadow */
  1113.         if ((region == NULL) ||
  1114.                 (XRectInRegion (region, 0, hms, w, s) != RectangleOut) ||
  1115.                 (XRectInRegion (region, wms, 0, s, h) != RectangleOut))
  1116.         {
  1117.             pt[0].x = 0;    pt[0].y = h;
  1118.             pt[1].x = w;    pt[1].y = h;
  1119.             pt[2].x = w;    pt[2].y = 0; 
  1120.             pt[3].x = wms;    pt[3].y = s;
  1121.             pt[4].x = wms;    pt[4].y = hms;
  1122.             pt[5].x = s;    pt[5].y = hms; 
  1123.             XFillPolygon (dpy, win, bot, pt,6, Complex,CoordModeOrigin);
  1124.         }
  1125.     }
  1126. }
  1127.  
  1128. /************************************************************
  1129.  *
  1130.  *  Public routines. 
  1131.  *
  1132.  ************************************************************/
  1133.  
  1134. /* Set the scroll bar to the given location. */
  1135.  
  1136. void vim_XawScrollbarSetThumb (w, top, shown, max)
  1137.     Widget w;
  1138. #if NeedWidePrototypes
  1139.     double top, shown, max;
  1140. #else
  1141.     float top, shown, max;
  1142. #endif
  1143. {
  1144.     ScrollbarWidget sbw = (ScrollbarWidget) w;
  1145.  
  1146.     if (sbw->scrollbar.scroll_mode == SMODE_CONT) /* if still thumbing */
  1147.         return;
  1148.  
  1149.     sbw->scrollbar.max = (max > 1.0) ? 1.0 :
  1150.                 (max >= 0.0) ? max : sbw->scrollbar.max;
  1151.  
  1152.     sbw->scrollbar.top = (top > sbw->scrollbar.max) ? sbw->scrollbar.max :
  1153.                 (top >= 0.0) ? top : sbw->scrollbar.top;
  1154.  
  1155.     sbw->scrollbar.shown = (shown > 1.0) ? 1.0 :
  1156.                 (shown >= 0.0) ? shown : sbw->scrollbar.shown;
  1157.  
  1158.     PaintThumb (sbw);
  1159. }
  1160.